Function: getWindow(windowObject) Description: Returns the rendered height and width values of the specified window instance. Returns: Object with properties: "height" and "width". Note: When no parameter is set for windowObject, getWindow() will default to the current window instance. Example: var win = $A.getWindow(); alert(win.height); alert(win.width);